home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / Java / Pdapilot / AppBlock.java next >
Text File  |  1997-08-05  |  266b  |  21 lines

  1.  
  2. package Pdapilot;
  3.  
  4. import java.io.*;
  5.  
  6.  
  7. public class AppBlock extends Block {
  8.         
  9.         public AppBlock() {
  10.             super();
  11.         }
  12.         
  13.         public AppBlock(byte[] contents) {
  14.             super(contents);
  15.         }
  16.         
  17.         public String describe() {
  18.             return "raw='"+Util.prettyPrint(raw)+"'";
  19.         }
  20. }
  21.